home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 6 / Amiga Format AFCD06 (Nov 1996, Issue 90).iso / serious / shareware / workbench / rawstartup / install_rawstartup next >
Text File  |  1996-09-05  |  3KB  |  126 lines

  1. ;RawStartup INSTALLATION SCRIPT
  2. ;COPYRIGHT ©1996 MICHAEL NEUWEILER
  3.  
  4. (complete 0)
  5.  
  6. (set binary-dir
  7.     (askdir
  8.         (prompt "Please select the folder where "
  9.             "the program will be installed")
  10.         (default "C:")
  11.         (help "The C: folder is the default. If you would like "
  12.             "to install it into another folder you will have to "
  13.             "change your Startup-Sequence accordingly.")
  14.     )
  15. )
  16. (set @default-dest binary-dir)
  17.  
  18. (complete 10)
  19.  
  20. (copyfiles
  21.     (prompt "Copying the RawStartup binary")
  22.     (source "c/RawStartup")
  23.     (newname "RawStartup")
  24.     (help @copyfiles-help)
  25.     (optional force)
  26.     (dest binary-dir)
  27. )
  28.  
  29. (complete 30)
  30.  
  31. (makedir "S:RS"
  32.     (prompt "Installer will create a directory called "
  33.         "S:RS/ where the different startup scripts go in.\n"
  34.         "(RawStartup will check only this directory so it's "
  35.         "strongly suggested you allow Installer to create it.)")
  36.     (help "If you do not want Installer make the changes, you "
  37.         "will have to do them manually.")
  38.     (confirm)
  39. )
  40.  
  41. (complete 40)
  42.  
  43. (copyfiles
  44.     (prompt "Creating a default startup script out of "
  45.         "your original Startup-Sequence")
  46.     (help "This will copy S:Startup-Sequence to "
  47.         "S:RS/Default")
  48.     (source "S:Startup-Sequence")
  49.     (dest "S:RS")
  50.     (newname "Default")
  51.     (confirm)
  52. )
  53.  
  54. (complete 50)
  55.  
  56. (rename "S:Startup-Sequence" "S:Startup-Sequence.orig"
  57.     (prompt "Renaming S:Startup-Sequence to S:Startup-Sequence.orig "
  58.         "so it won't be overwritten by the installation of the "
  59.         "new Startup-Sequence.")
  60.     (help "If Installer isn't allowed to rename it then it "
  61.         "will be overwritten during the next step.\n"
  62.         "This is just to make it easier for you to restore "
  63.         "your original environment/startup")
  64.     (confirm)
  65. )
  66.  
  67. (complete 60)
  68.  
  69. (copyfiles
  70.     (prompt "Copying the new Startup-Sequence which "
  71.         "will start RawStartup immediately after a reboot.")
  72.     (source "S/Startup-Sequence")
  73.     (dest "S:")
  74.     (newname "Startup-Sequence")
  75.     (help @copyfiles-help)
  76.     (optional force)
  77.     (confirm)
  78. )
  79.  
  80. (complete 70)
  81.  
  82. (copyfiles
  83.     (prompt "Would you like to install an example script ?\n"
  84.         "(please have a look at the help text !)"
  85.     )
  86.     (help "If you use these example scripts you can press the "
  87.         "following keys during startup:\n\n"
  88.         "F1: Use your old Startup-Sequence (s:RS/Default)\n"
  89.         "F2: Use the original Amiga Startup-Sequence (s:RS/Startup_1.3)\n"
  90.         "F3: Start ShapeShifter with as much memory as possible. (s:RS/Startup_1.4)\n"
  91.         "F4: Start NetBSD (s:RS/Startup_1.5)\n"
  92.         "F5: Original Amiga Startup-Sequence but does not load the CyberGfx driver (Startup_1.6)\n\n"
  93.         "Please have a look at the different scripts in s:RS/ after they have been installed. It's very likely that you have to modify them to get them work with your configuration."
  94.     )
  95.     (source "s/RS")
  96.     (all)
  97.     (dest "S:RS")
  98.     (confirm)
  99. )
  100.  
  101. ;========================================================================
  102. ;
  103. ; Install the documentation
  104. ;
  105.  
  106. (complete 80)
  107. (set doc-dir "Work:")
  108. (set doc-dir
  109.     (askdir
  110.         (default doc-dir)
  111.         (prompt "Where would you like to install the documentation ?")
  112.         (help "This will copy the Documentation to the selected folder")
  113.     )
  114. )
  115.  
  116. (copyfiles
  117.     (prompt "Copying the Documentation")
  118.     (source "RawStartup.guide")
  119.     (help @copyfiles-help)
  120.     (optional force)
  121.     (dest doc-dir)
  122.     (infos)
  123. )
  124.  
  125. (complete 100)
  126.